* compilation.txt: Add one more error message for msft (Bug#4100).
authorChong Yidong <cyd@stupidchicken.com>
Sun, 8 Nov 2009 16:30:19 +0000 (16:30 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 8 Nov 2009 16:30:19 +0000 (16:30 +0000)
lisp/ChangeLog
lisp/progmodes/compile.el

index aa45dbc1c68642e1700dee8c700a4d5eaa888be5..d353fdf7832598c9e3af9eccb7b38b28fa441af8 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-08  Jared Finder  <jfinder@crypticstudios.com>
+
+       * progmodes/compile.el (compilation-error-regexp-alist-alist):
+       Handle "see declaration of" MSFT statements (Bug#4100).
+
 2009-11-08  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-advice-make-auto-save-file-name)
index b12e18a1eaf10f70acc5946d5c749efed0520a4a..91bfcf01beef1c7f1cb955e70b0d9a2eb5bd1435 100644 (file)
@@ -297,9 +297,11 @@ of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
      " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2)
 
     (msft
-     ;; AFAWK, The message may be a "warning", "error", or "fatal error".
-     "^\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
-: \\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:" 2 3 nil (4))
+     ;; The message may be a "warning", "error", or "fatal error" with
+     ;; an error code, or "see declaration of" without an error code.
+     "^ *\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
+: \\(?:see declaration\\|\\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:\\)"
+     2 3 nil (4))
 
     (omake
      ;; "omake -P" reports "file foo changed"